home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 208_01 / eterm.c < prev    next >
Text File  |  1987-10-11  |  16KB  |  475 lines

  1. /*
  2. HEADER:        CUG208;
  3. TITLE:        'e' for CP/M68K
  4. VERSION:    1.48+
  5.  
  6. DESCRIPTION:    "a screen editor";
  7.  
  8. KEYWORDS:    editor;
  9. SYSTEM:        CP/M68K, V1.2;
  10. FILENAME:    e/eterm.c
  11. WARNINGS:    "the default value is for systems with 128K bytes
  12.          of memory or more";
  13. SEE-ALSO:    cpm68k.c, e68k.doc, CUG VOL 133;
  14. AUTHORS:    G.N.Gilbert('e'), J.W.Haefner(for DeSmet C on MSDOS and UNIX)
  15. CODER:        Yoshimasa Tsuji
  16. COMPILERS:    DRI C(Alcyon C) for CP/M68K;
  17. */
  18. /*
  19.     FUNCTIONS: terminit,terminal,gotoxy,deleteline,linedelete,delpage,
  20.            clear, insertline,standout,standend,keytranslate,help
  21.  
  22.     PURPOSE: terminal dependent functions
  23.     TERMINALS SUPPORTED:
  24.     adm31, kaypro, adds, vt52, haze, h19, adm3a, beehive, vt100
  25.     (televideo, ibm, ansi fall into somewhere)
  26. */
  27. #define adm31    1
  28. #define kaypro 0
  29. #define adds    0
  30. #define vt52    0
  31. #define haze    0
  32. #define h19    0
  33. #define adm3a    0
  34. #define beehive 0
  35. #define vt100    0
  36.  
  37. #include "e.h"
  38.  
  39. /*-------------------------OUTPUT TO SCREEN---------------------------*/
  40. char *Standout;
  41. char *Standend;
  42. char *csraddr;
  43. char *insline;
  44. char *delline;
  45. char *lindel;
  46. char *pagedel;
  47. char *Clear;        /* clear screen string */
  48. char *initstr = "";
  49. char *finistr = "";
  50. char *termname;
  51.  
  52. terminit()
  53. {
  54.             /* initialise tty, esc sequence, set raw */
  55. #if adm31
  56.  Standout = "\033)";
  57.  Standend = "\033(";
  58.  csraddr = "\033=";
  59.  insline = "\033E";
  60.  delline = "\033T";
  61.  lindel = "\033R";
  62.  pagedel = "\033Y";
  63.  Clear = "\033*";
  64.  termname = "|for ADM31";
  65. # endif
  66.  
  67. # if h19 | adm3a | beehive
  68. #    if beehive
  69.  Standout = "\033l";
  70.  Standent = "\033m";
  71. #     else
  72.  Standout = "\033p";
  73.  Standend = "\033q";
  74. #     endif
  75. #     if adm3a
  76.  csraddr = "\033=";
  77. #     else
  78.  csraddr = "\033Y";
  79. #     endif
  80.  insline = "\033L";
  81.  delline = "\033K";
  82.  lindel = "\033M";
  83.  pagedel = "\033J";
  84.  Clear = "\033E";
  85. #    if h19
  86.  termname = "|for H19";
  87. #    endif
  88. #    if adm3a
  89.  termname = "|for ADM-3A";
  90. #    endif
  91. #    if beehive
  92.  termname = "|for Beehive";
  93. #    endif
  94. # endif
  95. # if vt52 | adds
  96.  Standout = "\033U";
  97.  Standend = "\033T";
  98.  crsaddr = "\033Y";
  99.  insline = "\033L";
  100.  delline = "\033K";
  101.  lindel = "\033M";
  102.  pagedel = "\033k";
  103. #  if vt52
  104.  initstr = "\033\060@\033\071P";
  105.     /* set foreground to normal
  106.      * set background to reverse
  107.      */
  108.  finistr = "\033\071@";
  109.     /* set background back to normal*/
  110.  termname = "|for DEC VT52";
  111. #  endif
  112. #  if adds
  113.  initstr = "\033\071@\033\060P";
  114.  finistr = "\033\060@";
  115.  termname = "|for ADDS";
  116. #  endif
  117. # endif
  118.  
  119. # if vt100
  120.  Standout = "\033[1m";
  121.  Standend = "\033[0m";
  122.  crsaddr = "\033[";
  123.  insline = "\033[1L";
  124.  delline = "\033[K";
  125.  lindel = "\033[1M";
  126.  pagedel = "\033[J";
  127.  termname = "|for DEC VT100";
  128. # endif
  129.  
  130. # if kaypro
  131. /*
  132.     specific to the KayPro 10
  133.     THANKS to Don Colner for providing these codes and key assignments!
  134. */
  135.  Standout = "\033B1";
  136.  Standend = "\033C1";
  137.  crsaddr = "\033=";
  138.  insline = "\033E";
  139.  delline = "\030";
  140.  lindel = "\033R";    /* (0,y), ** , (0,y) */
  141.  pagedel = "\027";
  142.  termname = "|for Kaypro 10";
  143. # endif
  144. # if haze
  145. /*
  146.  specific to the HAZELTINE range of terminals.
  147.     NOTE ALSO that the terminal must be set to use TILDE as the lead -in
  148.     character, not Escape.
  149.  screen control characters for Hazeltine 1420 (and probably other
  150.     Hazeltines as well)
  151.  */
  152.  termname = "|for Hazeltine";
  153.  Standout = "\0134\031";
  154.  Standend = "\0134\037";
  155.  csraddr =  "\0134\021"; /* x, y */
  156.  insline = "\0134\033"; /* (0,y), ** */
  157.  delline = "\0134\017";
  158.  lindel = "\0134\023"; /* (0,y), ** */
  159.  pagedel = "\0134\030";
  160. #endif
  161.  
  162.  
  163.     raw();     /* set tty input in raw mode */
  164.     putstr(initstr);
  165. }
  166.  
  167. termfini()    /*restore terminal to 'normal' state.  Called once before
  168.           program exits */
  169. {
  170.     putstr(finistr);
  171.     noraw();    /* restore normal tty mode */
  172. }
  173.  
  174. terminal()    /*display name of terminal*/
  175. {
  176.     putstr(termname);
  177. }
  178.  
  179. gotoxy(x,y)    /*move cursor to column x, line y {top left is (0,0) */
  180. int x,y;
  181. {
  182.     putstr(csraddr);
  183. # if haze
  184.     putch(x), putch(y);
  185. # else
  186. #  if vt100
  187.     uspr(y+1);
  188.     putch(';');
  189.     uspr(x+1);
  190.     putch('H');
  191. #  else
  192.     putch(y+32);
  193.     putch(x+32);
  194. #  endif
  195. # endif
  196. }
  197.  
  198. clear()    /* clear stdscr */
  199. {
  200.     delpage(0);
  201. /*
  202.     putstr(Clear);
  203.  */
  204. }
  205.  
  206.  
  207. deleteline(x,y)    /*clear to spaces all characters on line y from column x
  208.             to the right edge of the screen, inclusive.
  209.             Leave cursor on left most blank */
  210. int x, y;
  211. {
  212.     gotoxy(x,y);
  213.     putstr(delline);
  214.     gotoxy(x,y);
  215.  
  216. }
  217.  
  218. linedelete(y)    /*delete the line y.  All following lines move up one.
  219.             Leave cursor at start of line y */
  220. int y;
  221. {
  222.     gotoxy(0,y);
  223.     putstr(lindel);
  224.     gotoxy(0,y);
  225. }
  226.  
  227. delpage(y)    /*clear to spaces line y and all following lines.  Leave
  228.             cursor at the start of line y */
  229. int y;
  230. {
  231.     gotoxy(0,y);
  232.     putstr(pagedel);
  233. }
  234.  
  235. insertline()    /*move all lines below line on which cursor is, down one,
  236.             losing last line.  New cursor line is blank, with
  237.             cursor at start of line */
  238. {
  239.     putstr(insline);
  240. }
  241.  
  242. standout()    /* stand out all subsequent characters */
  243. {
  244.     putstr(Standout);
  245. }
  246.  
  247. standend()    /* display all subsequent characters normally */
  248. {
  249.     putstr(Standend);
  250. }
  251.  
  252.  
  253. /*----------------------INPUT FROM KEYBOARD-----------------------------*/
  254.  
  255. # define ctrl(letter) ('letter' & 037)
  256. #define ESC     033
  257.  
  258.  
  259. keytranslate()    /*defines the terminal key codes which perform
  260.             the editor commands */
  261. {
  262.     /* each tran[xxxx]= should be set to the code emitted by the terminal
  263.     key which will perform the indicated action.  The recommended (control)
  264.     key assignments are shown in round brackets.
  265.         Some terminals precede their codes by a lead-in character
  266.     (eg the Hazeltine uses the tilde).  This char should be assigned to
  267.     tran[LEADIN].  If there is no lead-in character, set tran[LEADIN] to zero.
  268.         'e' will ignore the leadin character if tran[LEADIN] is non-zero,
  269.     but will set the parity bit on the next character. All other chars from the
  270.     keyboard will already have any parity bits removed as they are read in.  Thus
  271.     codes with lead-ins should be entered in the table below as code+0x80, or
  272.     more clearly, as code+PARBIT.
  273.         For example, suppose that one is coding the Hazeltine 1420, which
  274.     generates a tilde,^L (0x0d) sequence when the cursor up key is pressd.  To
  275.     recognise this sequence, set tran[LEADIN] to tilde (0x7e) and set
  276.     tran[UPKEY] to 0x0d+PARBIT.
  277.     */
  278. # if adm31 | h19 | adm3a | beehive | vt100
  279.     tran[LEADIN]=0;        /*lead-in character, 0 if not used*/
  280.     tran[DOWNKEY]= ctrl(J);    /*cursor down */
  281.     tran[UPKEY]= ctrl(K);    /*cursor up*/
  282.     tran[LEFTKEY]= ctrl(H);    /*cursor left*/
  283.     tran[RIGHTKEY]= ctrl(L);    /*cursor right*/
  284.     tran[RIGHTWKEY]= ctrl(D);    /*cursor right one word  */
  285.     tran[LEFTWKEY]= ctrl(S);    /*cursor left one word  */
  286.     tran[EOLKEY]= ctrl(E);    /*cursor to end of line  */
  287.     tran[BOLKEY]= ctrl(B);    /*cursor to beginning of line  */
  288.     tran[UPPAGE]= ctrl(W);    /*scroll up a page  */
  289.     tran[DOWNPAGE]= ctrl(Z);    /*scroll down a page  */
  290.     tran[BOFKEY]= ctrl(U);    /*cursor to beginning of file  */
  291.     tran[HOMEKEY]= ctrl(^);    /*cursor to end of file (HOME) */
  292.     tran[DELLEFT]= 0177;    /*delete char to left of cursor (DEL) */
  293.     tran[DELRIGHT]= ctrl(G);    /*delete char under cursor  */
  294.     tran[DELLNKEY]= ctrl(Y);    /*delete cursor line  */
  295.     tran[DELWDKEY]= ctrl(T);    /*delete word to right of cursor  */
  296.     tran[JUMPKEY]= ctrl(X);    /*jump to  */
  297.     tran[CRSTILL]= ctrl(N);    /*insert newline after cursor  */
  298.     tran[QUITKEY]= ctrl(Q);    /*quit  */
  299.     tran[ENVIRKEY]= ctrl(C);/*edit and file context */
  300.     tran[FINDKEY]= ctrl(F);    /*find  */
  301.     tran[ALTERKEY]= ctrl(A);    /*alter  */
  302.     tran[BLOCKKEY]= ctrl(O);    /*block operations  */
  303.     tran[RDFILEKEY]= ctrl(P);    /*read a file */
  304.     tran[REPKEY]= ctrl(R);    /*repeat last find/alter */
  305.     tran[HELPKEY]= ctrl(V);    /*display help menu */
  306.     tran[UNDOKEY]= ctrl(\\);    /*restore unedited line  */
  307.     tran[TAB]= ctrl(I);    /*tab  */
  308.     tran[RETRIEVE]= ctrl(R);    /*retrieve */
  309.     tran[CR]= ctrl(M);    /*return*/
  310.     tran[ESCKEY]=ESC;    /*escape, the magic key (ESC)*/
  311. }
  312. # endif
  313. /* of adm31 */
  314. # if vt52
  315.     tran[LEADIN]=ESC;    /*lead-in character, 0 if not used*/
  316.     tran[DOWNKEY]= 'B'+PARBIT;    /*cursor down */
  317.     tran[UPKEY]= 'A'+PARBIT;    /*cursor up*/
  318.     tran[LEFTKEY]= 'D'+PARBIT;    /*cursor left*/
  319.     tran[RIGHTKEY]= 'C'+PARBIT;    /*cursor righ